home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Windows / WindowDefaults.cp < prev    next >
Text File  |  1997-06-28  |  512b  |  32 lines

  1. // WindowDefaults.cp
  2.  
  3. #ifndef WindowDefaults_h
  4. #include "WindowDefaults.h"
  5. #endif
  6. #ifndef GraphicsDeviceObject_h
  7. #include "GraphicsDeviceObject.h"
  8. #endif
  9. #ifndef Str_h
  10. #include "Str.h"
  11. #endif
  12.  
  13. GDHandle WindowDefaults::DefaultScreen() const
  14.   {
  15.     return GraphicsDeviceObject::Main();
  16.   }
  17.  
  18. void WindowDefaults::GetDefaultName( String255& name ) const
  19.   {
  20.     name.SetLength( 0 );
  21.   }
  22.  
  23. uint32 WindowDefaults::DefaultIndex() const
  24.   {
  25.     return 1;
  26.   }
  27.  
  28. bool WindowDefaults::DefaultVisibility() const
  29.   {
  30.     return true;
  31.   }
  32.